We already have Move-AzureRmDataLakeStoreItem
which will move files between folders inside Azure datalake. What I am seeking is to copy files within the datalake without effecting the original file.
The possibilities that I know are-
- using
USQL
toEXTRACT
data from sourcefile and thenOUTPUT
to the destinationfile - but I am trying to copy all sort of files (.gz,.txt,.info,.exe,.msi) and I am not sure ifUSQL
can help me with .gz or .exe or .msi files - using
Data Factory
to copy data from/toData Lake store
So, my ask here is do we have anything else at our disposal with which we can perform a copy of files within Azure Data Lake Store?