I have been struggling a lot with this piece of code i wrote by referring tutorials:
import os
os.chdir(f'/home/django/image-io/accounts/john_doe/optimized/')
cwd = os.getcwd()
logger.info(f'CURRENT WORKING DIRECOTRY :{cwd}')
subprocess.Popen(f"optimize-images")
What i am trying to do is dynamically change directory on username (john_doe) in this case and run a command optimize-images inside that directory to optimize all images .
It doesn't seem to work.
When i checked the logs , it says:
optimize-images : "No such directory present"
I am not able to understand , where i am doing wrong. any help would be appreciated.