Tagged Questions
The mklink tag has no wiki summary.
4
votes
1answer
666 views
Run Windows CMD commands via Python
I want to create a folder with symlinks to all files in a large directory structure. I used subprocess.call(["cmd", "/C", "mklink", linkname, filename]) first, and it worked, but opened a new command ...
1
vote
2answers
55 views
How to realize “mklink /H” (hardlinking) in Java?
i want to create a hardlink from a file "C:\xxx.log" to "C:\mklink\xxx.log" .
In cmd it works of course, but i want to write a software for this usecase.
So have to locate the existing file
Then ...
1
vote
1answer
811 views
Create windows 2003 shortcut or MKLINK based on current date?
I need to create a symlink/shortcut on the prod servers that will alias:
agent_ivr_general_info.CURRENT
to
agent_ivr_general_info.[todays date].log
because I have daily rolling logs cush as:
...
1
vote
2answers
227 views
mklink error in visual studios/webdev
In my webapp i write Process.Start("mklink", args);. This is for testing only and the function has an if to check which os this app is running on (it will be running on my linux server) but i get an ...
0
votes
2answers
375 views
Yet another Python Windows CMD mklink problem … can't get it to work!
OK I have just posted another question which outlined my program but the specific problem was different.
Now, my program just stops working without any message whatsoever. I'd be grateful if someone ...