I am trying to move file from downloads to folder and trying to open using open word activity . After move file activity, the file is moved to folder but in log message it still shows its in downloads folder when actually its not there and open word activity shows blank word file.
Databricks Contract For Review_Q-30173 (666c5176cd) (4)
It looks like you’re not passing the correct path and filename to the Word activity. You’re just passing file_2 again, which is the old path and filename. That’s why it looks like it’s still there, because you’re creating it back in the old location. Also in your assign you’re getting the filename without extension, which isn’t going to work.
Before moving the file, set newPath to Path.Combine(Iron_Cladform,Path.GetFileName(file_2)) and then do the move, then give newPath to the Word activity.
As per your flow Iron_Cladform contains a extension .docx. And befor using Word Application Scope you are storing the filename in a variable filename_IronClad.
So in Save Document as PDF you should be passing filename_IronClad+".pdf"
You aren’t giving it a path, so it’s saving in your project folder (same place your XAML files are). You are supposed to give it the FULL PATH AND FILENAME.