FileManager
class FileManager : NSObject- 
                  
                  IO suspended version of FileManager.url(for:in:appropriateFor:create:). Refer to that method for further documentation.DeclarationSwift func urlIO( for directory: FileManager.SearchPathDirectory, in domain: FileManager.SearchPathDomainMask, appropriateFor url: URL, create shouldCreate: Bool) -> IO<Error, URL>
- 
                  
                  IO suspended version of FileManager.contensOfDirectory(at:includingPropertiesForKeys:options:). Refer to that method for further documentation.DeclarationSwift func contentsOfDirectoryIO( at url: URL, includingPropertiesForKeys keys: [URLResourceKey]?, options mask: FileManager.DirectoryEnumerationOptions = []) -> IO<Error, [URL]>
- 
                  
                  IO suspended version of FileManager.contentsOfDirectory(atPath:). Refer to that method for further documentation.DeclarationSwift func contentsOfDirectoryIO(atPath path: String) -> IO<Error, [String]>
- 
                  
                  IO suspended version of FileManager.subpathsOfDirectory(atPath:). Refer to that method for further documentation.DeclarationSwift func subpathsOfDirectoryIO(atPath path: String) -> IO<Error, [String]>
- 
                  
                  IO suspended version of FileManager.createDirectory(at:withIntermediateDirectories:attributes:). Refer to that method for further documentation.DeclarationSwift func createDirectoryIO( at url: URL, withIntermediateDirectories createIntermediates: Bool, attributes: [FileAttributeKey: Any]? = nil) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.createDirectory(atPath:withIntermediateDirectories:attributes:). Refer to that method for further documentation.DeclarationSwift func createDirectoryIO( atPath path: String, withIntermediateDirectories createIntermediates: Bool, attributes: [FileAttributeKey: Any]? = nil) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.createFile(atPath:contents:attributes:). Refer to that method for further documentation.DeclarationSwift func createFileIO( atPath path: String, contents: Data?, attributes: [FileAttributeKey: Any]? = nil) -> IO<Error, Bool>
- 
                  
                  IO suspended version of FileManager.removeItem(at:). Refer to that method for further documentation.DeclarationSwift func removeItemIO(at url: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.removeItem(atPath:). Refer to that method for further documentation.DeclarationSwift func removeItemIO(atPath path: String) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.replaceItemAt(_:withItemAt:backupItemName:options:). Refer to that method for further documentation.DeclarationSwift func replaceItemIO( at originalItemURL: URL, withItemAt newItemURL: URL, backupItemName: String? = nil, options: FileManager.ItemReplacementOptions = []) -> IO<Error, URL?>
- 
                  
                  IO suspended version of FileManager.copyItem(at:to:). Refer to that method for further documentation.DeclarationSwift func copyItemIO( at originalItemURL: URL, to newItemURL: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.copyItem(atPath:toPath:). Refer to that method for further documentation.DeclarationSwift func copyItemIO( atPath originalItemPath: String, toPath newItemPath: String) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.moveItem(at:to:). Refer to that method for further documentation.DeclarationSwift func moveItemIO( at originalItemURL: URL, to newItemURL: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.moveItem(atPath:toPath:). Refer to that method for further documentation.DeclarationSwift func moveItemIO( atPath originalItemPath: String, to newItemPath: String) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.createSymbolicLink(at:withDestinationPath:). Refer to that method for further documentation.DeclarationSwift func createSymbolicLinkIO( at url: URL, withDestinationURL destinationURL: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.createSymbolicLink(atPath:withDestinationPath:). Refer to that method for further documentation.DeclarationSwift func createSymbolicLinkIO( atPath path: String, withDestinationPath destinationPath: String) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.linkItem(at:to:). Refer to that method for further documentation.DeclarationSwift func linkItemIO( at url: URL, to destinationURL: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.linkItem(atPath:toPath:). Refer to that method for further documentation.DeclarationSwift func linkItemIO( atPath path: String, toPath destinationPath: String) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.destinationOfSymbolicLink(atPath:). Refer to that method for further documentation.DeclarationSwift func destinationOfSymbolicLinkIO(atPath path: String) -> IO<Error, String>
- 
                  
                  IO suspended version of FileManager.componentsToDisplay(forPath:). Refer to that method for further documentation.DeclarationSwift func componentsToDisplayIO(forPath path: String) -> IO<Error, [String]?>
- 
                  
                  IO suspended version of FileManager.displayName(atPath:). Refer to that method for further documentation.DeclarationSwift func displayNameIO(atPath path: String) -> IO<Error, String>
- 
                  
                  IO suspended version of FileManager.attributesOfItem(atPath:). Refer to that method for further documentation.DeclarationSwift func attributesOfItemIO(atPath path: String) -> IO<Error, [FileAttributeKey : Any]>
- 
                  
                  IO suspended version of FileManager.attributesOfFileSystem(forPath:). Refer to that method for further documentation.DeclarationSwift func attributesOfFileSystemIO(forPath path: String) -> IO<Error, [FileAttributeKey : Any]>
- 
                  
                  IO suspended version of FileManager.setAttributes(_:ofItemAtPath:). Refer to that method for further documentation.DeclarationSwift func setAttributesIO( _ attrs: [FileAttributeKey: Any], ofItemAtPath path: String) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.contents(atPath:). Refer to that method for further documentation.DeclarationSwift func contentsIO(atPath path: String) -> IO<Error, Data?>
- 
                  
                  IO suspended version of FileManager.contentsEqual(atPath:andPath:). Refer to that method for further documentation.DeclarationSwift func contentsEqualIO( atPath path: String, andPath otherPath: String) -> IO<Error, Bool>
- 
                  
                  IO suspended version of FileManager.changeCurrentDirectoryPath(_:). Refer to that method for further documentation.DeclarationSwift func changeCurrentDirectoryPathIO(_ path: String) -> IO<Error, Bool>
- 
                  
                  IO suspended version of FileManager.trashItem(at:resultingItemURL:). Refer to that method for further documentation.DeclarationSwift @available(iOS 11.0, *) func trashItemIO( at url: URL, resultingItemURL outResultingURL: AutoreleasingUnsafeMutablePointer<NSURL?>?) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.setUbiquitous(_:itemAt:destinationURL:). Refer to that method for further documentation.DeclarationSwift func setUbiquitousIO( _ flag: Bool, itemAt url: URL, destinationURL: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.startDownloadingUbiquitousItem(at:). Refer to that method for further documentation.DeclarationSwift func startDownloadingUbiquitousItemIO(at url: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.evictUbiquitousItem(at:). Refer to that method for further documentation.DeclarationSwift func evictUbiquitousItemIO(at url: URL) -> IO<Error, ()>
- 
                  
                  IO suspended version of FileManager.url(forPublishingUbiquitousItemAt:expiration:). Refer to that method for further documentation.DeclarationSwift func urlIO( forPublishingUbiquitousItemAt url: URL, expiration outDate: AutoreleasingUnsafeMutablePointer<NSDate?>?) -> IO<Error, URL>
- 
                  
                  IO suspended version of FileManager.getFileProviderServicesForItem(at:completionHandler:). Refer to that method for further documentation.DeclarationSwift @available(macOS 10.13, iOS 11.0, *) func getFileProviderServicesForItemIO(at url: URL) -> IO<Error, [NSFileProviderServiceName : NSFileProviderService]>
 
             Install in Dash
              Install in Dash
             FileManager Extension Reference
        FileManager Extension Reference