* M33: Get Long Path * * Get the long full path of a file or folder * * Parameters: * Case-insensitive DOS-style path to a file or folder * * Example: * M33 miscel~1/armchair/armcha~1.gco * * Output: * /Miscellaneous/Armchair/Armchair.gcode */
| 42 | * /Miscellaneous/Armchair/Armchair.gcode |
| 43 | */ |
| 44 | void GcodeSuite::M33() { |
| 45 | |
| 46 | card.printLongPath(parser.string_arg); |
| 47 | |
| 48 | } |
| 49 | |
| 50 | #endif // LONG_FILENAME_HOST_SUPPORT |
nothing calls this directly
no test coverage detected