[Closed] filenameFromPath in max 2010 does something weird
Could someone please try this…
- Make a material in slot 1 of the medit
- Apply any bitmap you want to the diffuse channel
- Go Maxscript-> New Script and type the following code…
bitmapFileIn = meditmaterials[1].diffusemap.filename
print (filenameFromPath bitmapFileIn)
- Now go to Tools->Evaluate All
I get the following result…
"C:\Documents and Settings\Administrator\My Documents\3dsmax\sceneassets\images\originalobject_1heightmap.tif"
"{78AF8EE3-FD5E-4516-818A-4ED237C79A80}"
in max2009, I get the correct result…
"C:\Documents and Settings\Administrator\My Documents\3dsmax\sceneassets\images\originalobject_1heightmap.tif"
"originalobject_1heightmap.tif"
What is max 2010 doing to the file name?
- Neil
XP or Vista/Windows7 ?
for the many problems in recent max versions dealing with filenames (like the “JPG Map” texture bug …) i suspect the NTFS junctions to be the root of evil. Junctions are used in Vista and Windows7 to hardlink some paths in the “User” folderstructure .
Does the same thing happen if you place your project directory outside the “User” path ?
Some folder that recieves no special “treatment” by windows ?
I had the same problem and ended up using:
meditmaterials[1].diffusemap.bitmap.filename
Hope it helps, cheers.
Afraid not, I am parsing strings in my actual script, not maps, I just used maps to give you guys an easier way to see the problem. Thanks anyways.
- Neil
Nail,
I also notice that it was returning some strange string.
What I end up doing was to use this function where ever I had filenameFromPath
fn returnName file = (
theFile = getFilenameFile file
theExt = getFilenameType file
return (theFile + theExt)
)
Hope it helps.
Guillermo Leal
Thanks. I was considering something similar where basically I parse the string backwards and look for everything after the first “/” character, that’s similar to what you’re doing. Thanks for the info, hopefully we can just get the big fixed.
- Neil
Hi all,
the problem is related with the new asset system in max 2010 that in fact gives the well know bug of JPEG File instead of the filename. To solve the problem in the materials we can use
bitmapFileIn = meditmaterials[1].diffusemap.filename as AssetUser
print (filenameFromPath (bitmapFileIn.getFileName())
The Assetuser has the following methods:
.[b]GetAssetId/b – This is the strange we get when trying to get the filename without casting to an AssetUser
.getFileName()
.getType()
Best regards,
Daniel
So is it definately a bug then? Good to know. Unfortunately, your method won’t work for my purposes, since by the time my function gets the string, it’s just a string, not a value inside a bitmap map. I guess I’ll just stick with the string parsing backup plan.
- Neil
Hey Neil, can’t you use the dotnet equivalents?
Edit: Here’s an example:
dnPath=dotnetclass "System.IO.Path"
dnPath.getfilename "C:\Users\Administrator\Documents\3dsmax\previews\_scene.avi"
Thanks for all the suggestions everyone, in the end I decided to go with this…
fn sLibFilenameFromPath f =
(
filteredString = filterString f "\\"
if filteredString.count != 0 then return filteredString[filteredString.count]
else return undefined
)
- Neil