public bool DirectoryExists(NPath append) { ThrowIfNotInitialized(); if (!append.IsInitialized) { return(DirectoryExists()); } return(FSWrapper.DirectoryExists(Combine(append))); }
public bool DirectoryExists() { ThrowIfNotInitialized(); return(FSWrapper.DirectoryExists(this)); }