public async Task CreateDirectory() { string path = "/test/"; await _file.CreateDirectoryAsync(path); Assert.IsTrue(await _file.GetDirectoryExistsAsync(path)); Assert.IsFalse(await _file.GetFileExistsAsync(path)); }