Total Commander plugin for MSX DSK files - does it exist?

Por joy_33

Resident (56)

Imagen del joy_33

08-11-2021, 21:46

On my PC I use the program Total Commander (https://www.ghisler.com/) which can open a lot of different files for different computers.
Therefore, I wonder if there is a plugin for this manager that could work directly from DSK files in MSX format?
I've found a lot of different plugins, but support for MSX DSK isn't there.
I only found a support for MSX TAP files.
casMSXwcx 1.3: https://totalcmd.net/plugring/casMSXwcx.html
You can search for other plugins here:
https://totalcmd.net/directory/packer.html
or on the official website: https://www.ghisler.com/plugins.htm

In the end I found something that could be used, it's not directly in Total Commander but for the command line in WIN and Linux

dsktool - https://github.com/nataliapc/MSX_devs/tree/f95949cbf775a42f4...

WIN and LINUX compiled version for command line
https://launchpad.net/dsktool

If anyone knows about the plugin for Total Commander let me know.
Thank you

Login sesión o register para postear comentarios

Por mars2000you

Enlighted (6499)

Imagen del mars2000you

08-11-2021, 22:06

You can maybe try Disk Manager: http://www.lexlechz.at/en/software.html

Por joy_33

Resident (56)

Imagen del joy_33

09-11-2021, 21:40

Hello,

Yes this program can also be used to open the DSK.
Thank you.

Por Grauw

Ascended (10772)

Imagen del Grauw

09-11-2021, 23:01

I’m not familiar with Total Commander, but I see on the site that there are two plugins for IMG disk image files. Chances are that if you associate these plugins with the DSK extension (or rename the file to .img) that they will work…

Por joy_33

Resident (56)

Imagen del joy_33

10-11-2021, 10:38

Thanks. I'll take a look at it.

Por OeiOeiVogeltje

Paragon (1433)

Imagen del OeiOeiVogeltje

10-11-2021, 11:51

Try "M" from sharksym

Por TheKid

Paragon (1238)

Imagen del TheKid

10-11-2021, 14:47

Total commander is the best tool ever. I use it since it was called norton commander and later windows commander (but a certain software giant didn't like that name Smile ) Would be awesome to open dsk files with it. Unfortunately the 2 IMG plugins are 32 bits only.

Por joy_33

Resident (56)

Imagen del joy_33

10-11-2021, 22:13

Hello,
Finally, I used the dsktool utility (https://launchpad.net/dsktool)
My friend created a script that will extract all the DSK files he finds in the same directory as the script and the dsktool.exe file.

First you create a run.cmd file
the contents of the run.cmd file

@echo off
for %% m in (* .dsk) to call: process ".. \ %% m" "%% ~ nm"
exit / b

: process
echo Processing file% 1
mkdir% 2
cd% 2
.. \ dsktool.exe E% 1
cd ..
exit / b

So just create a directory, for example "working", copy the files run.cmd and dsktool.exe and DSK files (all in the attachment), then just run the file run.cmd, the script will create a directory according to the name of the DSK file, then using the program dsktool .exe will extract and save the files to a directory with the same name as the input DSK file.

It works perfectly, tested under WIN10, the only problem is that the DSK file name must not contain the % character, in which case the files will not be extracted.

You may need to unpack several DSKs at once.
Unpacking works for disks that are not protected by some protection, for example some games failed to unpack.

Jack