Hi All,
In A folder contains 2 files and I am renaming the files with inprogress once I have read the file’s
1.test.xls
2.test_new.xls
Expect result below :
If file name contains new then I need the out as below.
1.test_inprogress.xls
2.test_new.xls
3test_new_inprogress.xls
Tes_new file need additional copy without changing inprogress
AshwinS2
(Ashwin S)
October 7, 2019, 9:50am
2
Hi @Naveen.Ch
Use Directory.GetFiles(inputfilepath,“.xls”)
for each item in files
then pass the out filename
Thanks
Ashwin S
1 Like
Thanks for response.
My question is there any way to keep the original copy and take one more copy to change the status of file in same folder .
ImPratham45
(Prathamesh Patil)
October 7, 2019, 10:05am
4
Before renaming it use file exist activity
according to that rename it…
1 Like
Thanks for the response.
Input is 1 input file (Test_new.xls) in 1 folder
Output is 2 files with original one and new one like below in same folder
Test_new.xls
Test_new_inprogress.xls
But it will change the name of orginal file right.
But I need 2 set of files one with exiting one and new one with renaming
How we can keep and rename the file in 1 folder
system
(system)
Closed
October 10, 2019, 10:17am
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.