Questions tagged [movefile]

53 questions
0
votes
1 answer

Transfer files between google-drive and one drive

I have more than 10TB of content in my google shared drive I want to copy all that content in my onedrive account. I tried mover.io but it's not working for me. What should I do. Also tried google colab but I couldn't find great code of python It's…
0
votes
1 answer

MOVE FILE IN VBA

I want the code below to use 2 methods. the first method is copy file and the second method is move file. For method 1 I did a comment so that to do method 2 but it didn't work there was an error. Sub movecopyFiles() Dim sh As Worksheet, lastR As…
roy
  • 693
  • 2
  • 11
0
votes
0 answers

How do I get Visual Basic to free up a PictureBox image?

I have a colored TIF image in a PictureBox. To convert it to grayscale I need to: (1) free the image from the pictureBox. (2) move the image from the working folder to a temp folder (3)use the grayscale subroutine to convert from color in the temp…
JerrMerr
  • 11
  • 4
0
votes
1 answer

Create folder based on filename

I have a question how to create a new folder based on part of the filename and also move directly the corresponding files to the new folder. Below you will find the structure of my directory with some examples. In both D0 and D1 folders you will…
0
votes
2 answers

Moving files to subdirectory in R based on file name

So I would like to copy files to a specific folder based on a certain part in their name. For your overview I put my folder structure below. In the folders D0 and D1 I have multiple files (as example I put names of two files here) and the folders…
0
votes
1 answer

Copy files from one folder to another on Drive with Apps Script

Team members upload content (regardless of file type) into a folder on Drive. I need to copy this content into another folder automatically with a trigger, and be able to move it around from there. I cannot use a "MoveFile" function as I am not the…
Gary
  • 3
  • 2
0
votes
1 answer

Moving a file from one location to another in Python. Getting a dst error

I'm trying to move a file from one folder to another using Python. I've tried using shutil, os.replace, os.rename but I'm getting the same error each time of TypeError: move() missing 1 required positional argument: 'dst' enter image description…
Nene
  • 15
  • 3
0
votes
1 answer

Copying files and it's subfolders

I'm trying to copy to another directory but it's copying over there all the way (C: \ users ...), and I don't want that. I just want to copy the current folder and its subdirectories. I also want to leave a symbolic link when the file is moved. I…
0
votes
1 answer

Batch File to organise pictures from mobile phone into folders (on Windows)

I just created my first Batch file, to organise my mobile phone pictures into folders (on Windows). It worked, I am just wondering if there is a more efficient way in coding this, as in its current form I would have to go through all possible…
Ben
  • 13
  • 1
0
votes
1 answer

How can I move a certain file extension into one folder with VB

I am new to VB and would like to create a software that moves a certain file extension into a single folder. I have already built the code that creates a folder on the desktop when clicking the button although after that runs I need to compile a…
Brenduan
  • 9
  • 5
0
votes
1 answer

How to use moveFile react-native-fs

i need share local image on react native app, use react-native share and react-native-fs. Image is in local folder in root app named 'images'. How to share this image. Do i need copy or move image to temp and use that image for getting absolute…
Ismeet
  • 419
  • 5
  • 19
0
votes
1 answer

VBS to Rename File via Send To Menu

Every day I have to rename files to replace spaces with dashes before I can send them to our machines (a few of our machines don't read spaces in file names but our file naming conventions have spaces, a conflict of interest I know). Sometimes it's…
Rekd
  • 1
0
votes
1 answer

How to use bat script to check for the size of a file in the folder and move it

Appreciate anyone's help. I am quite stuck on this. I am writing a bat script to move files from one folder to anther folder. (this part is simple enough) However, before actually moving the file, I'd like to check whether the size of the file…
0
votes
1 answer

Releasing File Locks

I have a Background Worker run part of a program that loops through an array of files collated at runtime, doing various SQL tasks based on the file type etc. One by one, as the files are dealt with, I want to move them to another folder so they are…
Optimaximal
  • 545
  • 1
  • 5
  • 28
0
votes
2 answers

Copy file based a specified folder based on file name. Create folder if it doesn't exist

I'm trying to copy files to a specific folder based on a file name. For example: Current Folder - C:\Stuff\Old Files\ The File- 206.Little Rock.map.pdf Destination Folder - D:\Cleanup\206\Repository So basically the leading number on the file (206)…