SMCheckProject icon indicating copy to clipboard operation
SMCheckProject copied to clipboard

清理项目路径包含中文

Open Dong4043 opened this issue 7 years ago • 0 comments

如果项目路径中包含中文,则CleanUnusedMethods类中find方法的fullPath这个转fileUrl时,fileUrl会为空。原因是不能对中文编码,我这样处理就可以了。

let data = fullPath.data(using: String.Encoding.utf8) let fileUrl = URL(dataRepresentation: data!, relativeTo: nil)

Dong4043 avatar Oct 19 '18 05:10 Dong4043