cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X

Move File From One Repository To Another

Mattie555
5-Regular Member

Move File From One Repository To Another

What function do I call to move a file from one repository to another. I have tried 'MoveFile', but that only seems to work when moving files from directory to another inside the same repository. I want to utilise the same functionality that can be accessed through the backend GUI in the repositories from within my service. Is this possible?

Mattie555_0-1673975494390.png

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

Use the following service...

 

FileTransferSubsystem > Copy

 

.

// result: INFOTABLE dataShape: "FileTransferJob"
let result = Subsystems["FileTransferSubsystem"].Copy({
	async: undefined /* BOOLEAN */,
	sourceRepo: undefined /* STRING */,
	metadata: undefined /* JSON */,
	targetRepo: undefined /* STRING */,
	targetFile: undefined /* STRING */,
	targetPath: undefined /* STRING */,
	queueable: undefined /* BOOLEAN */,
	sourceFile: undefined /* STRING */,
	sourcePath: undefined /* STRING */,
	timeout: undefined /* INTEGER */
});

 

Sathishkumar_C_0-1674017315565.png

 

View solution in original post

1 REPLY 1

Use the following service...

 

FileTransferSubsystem > Copy

 

.

// result: INFOTABLE dataShape: "FileTransferJob"
let result = Subsystems["FileTransferSubsystem"].Copy({
	async: undefined /* BOOLEAN */,
	sourceRepo: undefined /* STRING */,
	metadata: undefined /* JSON */,
	targetRepo: undefined /* STRING */,
	targetFile: undefined /* STRING */,
	targetPath: undefined /* STRING */,
	queueable: undefined /* BOOLEAN */,
	sourceFile: undefined /* STRING */,
	sourcePath: undefined /* STRING */,
	timeout: undefined /* INTEGER */
});

 

Sathishkumar_C_0-1674017315565.png

 

Top Tags