Android Question Copy multiple files

viriato

Member
Licensed User
Longtime User
Hi,
I am trying to copy multiple files , i tried the following but without success .
any suggestion.

File.CopyAsync(File.DirAssets, "*.png", File.DirDefaultExternal, "*.png")

Thanks
 

DonManfred

Expert
Licensed User
Longtime User
File.CopyAsync
Copies a single file! You can not use wildcards.
Collect the filenames to copy and copy them one by one.
 
Upvote 0
Top