| |
xIII
Registered: Nov 2008 Posts: 210 |
.nib files
How can I open these files ? |
|
... 2 posts hidden. Click here to view all posts.... |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
I use nibconv.exe to convert nib->g64, nib->d64, g64->d64
|
| |
xIII
Registered: Nov 2008 Posts: 210 |
Can this be done in batch ? |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
Sure:
for %%i in (*.nib) do nibconv.exe %%i %%i.g64 |
| |
iAN CooG
Registered: May 2002 Posts: 3186 |
if you want to have single extension I suggest to use CMD syntax
for %%i in (*.nib) do nibconv.exe %%i %%~ni.g64
|
| |
xIII
Registered: Nov 2008 Posts: 210 |
I opened a dos box and tried this but got an error : %%i not expected at this moment ????? |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
add it to a convert.bat file - thats how it works for me. |
| |
xIII
Registered: Nov 2008 Posts: 210 |
ok, it worked :) thx
Now I have a bunch of G64 files to convert to .D64 :p |
| |
chatGPZ
Registered: Dec 2001 Posts: 11352 |
there is probably a reason for them being .nibs ... |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
nib to g64:
for %%i in (*.nib) do nibconv.exe %%i %%i.g64
nib to d64:
for %%i in (*.nib) do nibconv.exe %%i %%i.d64
g64 to d64:
for %%i in (*.g64) do nibconv.exe %%i %%i.d64 |
| |
xIII
Registered: Nov 2008 Posts: 210 |
thx for the help
|
Previous - 1 | 2 - Next |