Exemplo n.º 1
0
        public static async Task <IFile> CreateFileByPathAsync(this IFolder startingFolder, string[] path, string fileName, CreationCollisionOption collisionOption)
        {
            IFolder folder = await startingFolder.CreateFolderByPathAsync(path);

            return(await folder.CreateFileAsync(fileName, collisionOption));
        }