aliyunpan/internal/syncdrive/sync_db_util_test.go

15 lines
248 B
Go
Raw Normal View History

2022-05-07 15:03:23 +08:00
package syncdrive
import (
"fmt"
"testing"
)
func TestFormatFilePath(t *testing.T) {
2022-08-09 19:27:46 +08:00
fmt.Println(FormatFilePath("D:\\-beyond\\p\\9168473.html"))
}
func TestFormatFilePath2(t *testing.T) {
fmt.Println(FormatFilePath("/my/folder/test.txt"))
2022-05-07 15:03:23 +08:00
}