I have two folders named Student
and Faculty
in the directory /home/ubuntu/Desktop/Pythontraining
. I need to save totally 10 files inside Student
folder and 3 files inside the Faculty
folder.I need to do the same in another system where the Student
and Faculty
folders are present in different directory(say: /home/documents/college
).How to store the file into the respective folders on two different machines without hardcoding the path?
how to locate a same folder on different machines on different directory?
247 Views Asked by Saravanan Selvam At
2
There are 2 best solutions below
2

You can use walk library for finding destination folder path. It's working best if you have only one folder for each search name:
import os
start = "/home/"
for dirpath, dirnames, filenames in os.walk(start):
found = False
for dirname in dirnames:
if dirname == 'Student':
full_path = os.path.join(dirpath, dirname)
found = True
break
if found:
break
Output:
/home/.../Student
For this kind of problem, you have multiple solutions :
Create environment variable on each machine, and inside the script do stuff like this :
Use arguments
And then call your script like this and adapt this line depending on the machine
Create a config file and use configparser
config.ini file
Usage on script :
And then deploy different
config.ini
files on each machine (tools like ansible can help you to automate this)Create a module
You can also create a module to store these parameters instead of a config file.
my_config.py
And then import it
script.py