How to save in multiple folders from MS Word

Status
Not open for further replies.

F1demon

Honorable
Sep 17, 2013
55
0
10,580
Is there any solution to this problem?

It seems such a simple thing- wanting to save in multiple folders simultaneously. I may have a Dropbox and a OneDrive into which I'd like to save an important doc I'm working on and having to go through the dialog box each time to ensure its saved for every single minor edit runs the risk of forgetting to save in one or the other.

Thank you.
 
Solution
You should look into syncing a folder with both onedrive and dropbox. I believe both have the ability to add arbitrary folders on your system. If both are syncing the folder, you can save your doc to that single folder and have it available from both cloud storage providers.

nukemaster

Distinguished
Moderator
Is this more than one file? If it is a folder you may be able to setup 3rd party software to sync those folders to keep content the same.

Another option would be to create a junction or symbolic link to the folder. This would mean all content would appear in all locations. I have never used this for this purpose, but it is easy enough to do in an administrative command prompt.

If it is just single files you want you can use a hard link. A hard link can be make in the administrative command prompt as well.

It is all done with the built in mklink command.

If you want to try that, let me know, I made a video of it.

 

Calculagator

Estimable
Nov 18, 2014
201
0
5,110
You should look into syncing a folder with both onedrive and dropbox. I believe both have the ability to add arbitrary folders on your system. If both are syncing the folder, you can save your doc to that single folder and have it available from both cloud storage providers.
 
Solution

F1demon

Honorable
Sep 17, 2013
55
0
10,580


Thanks, I might try that.
 

F1demon

Honorable
Sep 17, 2013
55
0
10,580


Yes, its just a single file for multiple folders. Your suggestion of having an mklnk sounds interesting? How does one do it? Thank you.
 

nukemaster

Distinguished
Moderator
I am going to cover the positive and negatives to using mklink to keep files(can even do folders with symbolic and junction links) in multiple locations.

Positive.
All updates are applied in all locations.
Programs see links as an actual files so almost all programs will work with these links

Negative
You are working with 1 files only now, you should take backups since you currently have 3 copies.
Deleting the file will cause them all to stop working.(depending on the type of link)
It takes a bit of work to setup.

To make such a link you can either make a hardlink or a symbolic link. For the most part they should both work similarly.

A hard link points to the data on the drive while a symbolic link points to the original file location(it even has the little shortcut arrow in Windows).

If you delete the original file on a hard link, the others will still contain data(as long as at least one link points to the data you can access it). These files look just like any other file and do not have an arrow to show they are linked.

If you delete the original file you have symbolic links to, the links will simply not work any more. Those links have arrows to show they are links. Programs used them the same as a file in that location. Restoring the file(same name and location) will fix it with this type of link. These types of links may be more user friendly.

I highly recommend testing this on some other files before putting it to use. This will give you time to get used to it.

Create a hard link or symbolic to a file.

Open the administrative command prompt. Hit start and type cmd then hold control + shift and hit enter. Say yes and you should have an administrator.
Now navigate to the location you want to create this link. cd\ will bring you to the root of a drive and cd.. will move up a level cd folder name will move you to folders. dir lists folders in your current folder(directory). You can also combine some of this to jump multiple folders at once.

So
Code:
cd\ 
cd "program files (x86)" [u]The brackets prevent errors when folders have spaces in the name[/u]
cd steam
cd steamapps
does the same
Code:
cd "c:\program files (x86)\steam\steamapps" from your primary drive(I assume you are C:).

Once you have found the directory you want, you use the mklink command(you can use it similar to cd, but this should be more easy to understand)

Code:
mklink /h "file you are creating" "full location of that file"

An example would be
Code:
mklink /h "myfile.txt" "c:\users\me\documents\files\myfile.txt"

I would not have a myfile.txt in whatever location I types the command.

Symbolic links are exactly the same, but you just leave out the /h

This video may help you. It only covers hard links, but again, leave out the /h and you have a symbolic link
https://youtu.be/rG_L6ovMh2g
 

F1demon

Honorable
Sep 17, 2013
55
0
10,580


Thank you very much!! Much appreciated! I think, I can work with a hard link and shall try this as soon as I get my new laptop!
 
Status
Not open for further replies.