Simulated._Fs._Storage.EnsureDirectoryExists C# (CSharp) 메소드

EnsureDirectoryExists() 개인적인 메소드

private EnsureDirectoryExists ( [ path ) : System.Threading.Tasks.Task
path [
리턴 System.Threading.Tasks.Task
		public async Task EnsureDirectoryExists([NotNull] FsPath path)
		{
			if (await IsDirectory(path))
				return;
			await _disk.CreateDir(path);
		}