Prusaslicer help to output filename
This is the default I use right now.
{input_filename_base}_{layer_height}mm_{filament_type[0]}_{print_time}_.gcode
But i have true to insert Timestamp - Year - Date - Hour, but it don't work.
Need help.
RE: Prusaslicer help to output filename
Works for me on Windows 10 with PS 2.6.1
Not sure why you want to insert timestamp as well as year/date/hour as the timestamp has all those in anyway.
For example the following inserted into the Print Settings>Output Options>Output Filename Format field -
{timestamp}_{year}_{month}_{day}_{hour}_{minute}_{second}_{input_filename_base}_{layer_height}mm_{filament_type[0]}_{print_time}_{int(total_weight)+1}g.gcode
When sliced gives "20230929-140340_2023_9_29_14_3_40_Shape-Box_0.2mm_PLA_35m_8g.gcode" As you can see the first long number is the timestamp, then we have then individual ones you asked for, year_Month_day_hour_minute_second which correspond to the timestamp values, then filename, layer height, filament type, print time, and a total weight (rounded up +1g) in this instance.