Search found 3 matches
- 06 Oct 2015 01:41
- Forum: DOS Batch Forum
- Topic: connect strings for python
- Replies: 5
- Views: 2735
Re: connect strings for python
I found my mistake: myvar saves the whole path, but i just the filenames. can you show me the code needed to just save the filenames?
- 06 Oct 2015 01:31
- Forum: DOS Batch Forum
- Topic: connect strings for python
- Replies: 5
- Views: 2735
Re: connect strings for python
Please read carefull. The question i asked is not a python problem but a batch topic. The Python programm works well if i type in the command and the arguments (= the files) manually. Now i want the batch programm to do this for me. It should parse all the files in the folder and save the paths in a...
- 05 Oct 2015 04:21
- Forum: DOS Batch Forum
- Topic: connect strings for python
- Replies: 5
- Views: 2735
connect strings for python
This is my code: @Echo off echo --------------------------------------------- echo ------ KLM file wird erstellt... ------ echo --------------------------------------------- echo. echo. setlocal enabledelayedexpansion For /R %%G IN (*.txt) DO set myvar=!myvar! %%G python PositionTracer_v1.1.py %myva...