Moving files to allow access to everyone
-
We have a group project and with our software we create files, like grocery lists and recipes. The problem is that these files are not equal for everybody, but should be. Those files are in a "build" folder, which is individual for everybody. The folder before is the same for everybody. How can I direct them into that folder?
Didnt find a function in QDir(rename didnt work) and to copy those files didnt work as well, because after building the program the json files always are generated in the build folder. UnsurprisinglyThese are the json files in the build directory
This is the directory in which the files would be accessable for everybody
-
@Paulus_rin said in Moving files to allow access to everyone:
This is the directory in which the files would be accessable for everybody
Im not sure what you mean here as even we put them in docs or similar then
its still on the local pc.Cant, you just put them on a server then via a shared folder ?
If you really want all members to access the SAME files and not copies of the same.
One of you could share a folder and put that files there and rest uses that. -
It is a project managed via github and the files in the second screenshot are accessable for everybody, effectively a cloud
-
It is a project managed via github and the files in the second screenshot are accessable for everybody, effectively a cloud
@Paulus_rin
So you are not in same location?Well you could use something like dropbox and store them in the folder/data there
and all would have access. -
No, we are not. Yeah, but i thought that something linke QDir could work
-
No, we are not. Yeah, but i thought that something linke QDir could work
@Paulus_rin
Hi
QDir is just a helper class to work with files and folders.
But it cant make a local folder public to others or things like that.