mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-23 22:42:15 +08:00
15 lines
248 B
Go
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"))
|
|
}
|