Questions tagged [azure-file-copy]
17 questions
1
vote
0 answers
AzureFileCop@5 #error# The term 'Get-AzResource' is not recognized "yaml"
trying to create pipeline which pushes github repository files to blob storage.
After yesterday surfing I was able to get away from Az.Accounts module not found (though it is installed in VM).
As suggested on stack overflow AzureRM and az was giving…

khmub
- 112
- 1
- 10
1
vote
1 answer
Copy file from Azure File Storage to Blob
I'm using copy data that copies a file from File Share to Blob. I always get this error:
'''
ErrorCode=UserErrorFailedToCreateAzureBlobContainer,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Unable to create Azure Blob…

kayeesp
- 55
- 2
- 9
1
vote
0 answers
Unable to copy files from azure file share to local disk in azure VM
I am having azure VM, where I have mounted Azure File share as drive(V:), I am trying to create azure pipeline which will do a copy task to copy files from mounted Azure File share(v:) to local disk (D:).
In release pipeline I chose Copy task and I…

Praveen N
- 120
- 1
- 7
1
vote
1 answer
Azure DevOps AzureFileCopy@4 task copy files to VM with no Public IP
I have a DevOps pipeline AzureFileCopy@4 task which I need to copy files to a VM. The task setup is straightforward:
- task: AzureFileCopy@4
inputs:
azureSubscription: ''
storage: ''
…

Mike
- 1,010
- 1
- 14
- 33
0
votes
1 answer
Azure Data Factory File copying from two different datasets to one folder with two subfolders using lookup value
Everyone I'm trying to copy files from two different tables from postgres database, for which I created two datasets, one linked service, one output dataset (parametrized folder name,filename)
step1: My Pipeline is connecting a lookup table which…

rakesh.data
- 119
- 4
- 14
0
votes
1 answer
azure file share map to folder based on clients?
Hello Every azure file share map to folder based on clients ?
I have 300 clients and each have there own files to upload on ADFS.
I want to map drive but folder which is only associated with that client not root folder.
so will this be possible with…

Maulik Dave
- 81
- 9
0
votes
1 answer
How to copy files from Azure File-Share (not blob) of different storage account using .net core
public void MoveFiles(AzureFileClient srcAzureClient, AzureFileClient destAzureClient, ShareClient srcShareClient, ShareClient destShareClient, string dirName)
{
if (!destAzureClient.ShareClient.GetDirectoryClient(dirName).Exists())
…

sarvesh t
- 23
- 1
- 5
0
votes
1 answer
How to use SAS Token in Azure File Copy Pipeline Task?
I am trying to copy ADF ARM templates to a storage account using the Azure File Copy Task in my Azure release pipeline. Since the storage account has firewall and networking set up, I want to use the SAS token to allow the Pipeline agent to copy the…

AJ31
- 210
- 2
- 13
0
votes
1 answer
Azure Storage - File Share - Move 16m files in nested folders
Posting here as server fault doesn't seem to have the detailed Azure knowledge.
I have a Azure storage account, a file share. This file share is connected to a Azure VM through mapped drive. A FTP server on the VM accepts a stream of files and…

Damo
- 1,898
- 7
- 38
- 58
0
votes
1 answer
Copy latest files from SAP Server using Azure Data Factory and File System Linked Service and store it in Azure Data Lake
I have a task to copy the newly added files everyday from SAP Server and store it in ADLS. There are 2 types files on the server (Recurring and Upfront) appended with date. I need to store the files in separate folder and everyday add the latest…

Mariya
- 55
- 2
- 13
0
votes
0 answers
DataFactory copies files multiple times when using wildcard
Hi all complete ADF newbie here - I have a strange issue with DataFactory and surprisingly cant see that anyone else has experienced this same issue.
To summarize:
I have setup a basic copy activity from blob to an Azure SQL database with no…

adahbache
- 33
- 3
0
votes
1 answer
Using AzureFileCopy task for selected files
I have a pretty simple pipeline in Azure DevOps. When a commit is made to a development branch, the files in the repo are checked out and then pushed to a blob storage container using the AzureFileCopy task. When I currently run the pipeline all the…

JimmyC
- 3
- 1
0
votes
1 answer
Issue in blob storage to fileShare big file transfer : Using fileRange (nodejs Cloud function). It transferring partial files
Issue in blob storage to fileShare big file transfer : Using fileRange (nodejs Cloud function). It transferring partial files.
When we transfer file of size 10MB - it transfers only 9.7MB
When we transfer file of size 50MB - it transfers only…
0
votes
1 answer
Multi-platform copy files to Azure Blob storage from Azure pipelines
I want to copy the build results from my Azure release pipeline to Azure blob storage.
Currently I use AzureFileCopy@4, which works fine when I build using a Windows agent. But it does not support Linux or MacOS, as I get this error:
##[error]The…

mottosson
- 3,283
- 4
- 35
- 73
-1
votes
1 answer
Azure Data Factory Copy Files
I want to copy files from one folder to another folder in data lake using ADF pipelines.
Ex : a/b/c/d. TO a/b
Here a,b,c,d are folders here I don't want to copy c,d folders .I have to copy the files inside those folders to 'b' folder.
I created a…

Sowmya thota
- 1
- 2