Solved
.TAB rather than .tab
Does anyone know if it possible to get fme to write out tab files as .TAB rather than .tab
Best answer by daveatsafe
Link seem to be broken, but this Python in your Shutdown Script should do it:
import fme
import os
# get output folder from User Parameters
outFolder = fme.macroValues['DestDataset_MAPINFO']
# get list of files in folder
fileList = os.listdir(outFolder)
# loop through files
for file in fileList:
# split name into root and extension
root, ext = os.path.splitext(file)
# rename to use lower case extension
os.rename(os.path.join(outFolder, root + ext),os.path.join(outFolder, root + ext.upper()))This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.




