FileBrowser icon indicating copy to clipboard operation
FileBrowser copied to clipboard

Unable to display hidden files

Open jhoughjr opened this issue 8 years ago • 1 comments

I don't see a way to allow the browser to show hidden files. i.e. files with prefix .

jhoughjr avatar Jan 13 '17 16:01 jhoughjr

Just a few years late. in file below FileBrowser/FileBrowser/FileParser.swift chnage the line 42 filePaths = try self.fileManager.contentsOfDirectory(at: directoryPath, includingPropertiesForKeys: [], options: [.skipsHiddenFiles])

with

filePaths = try self.fileManager.contentsOfDirectory(at: directoryPath, includingPropertiesForKeys: [], options: [])

hunble avatar Jun 29 '21 09:06 hunble