aliyunpan/internal/syncdrive/sync_db_util_test.go
2022-08-09 19:27:46 +08:00

15 lines
248 B
Go

package syncdrive
import (
"fmt"
"testing"
)
func TestFormatFilePath(t *testing.T) {
fmt.Println(FormatFilePath("D:\\-beyond\\p\\9168473.html"))
}
func TestFormatFilePath2(t *testing.T) {
fmt.Println(FormatFilePath("/my/folder/test.txt"))
}