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()))
<strong>This post is closed to further activity.</strong><br />
It may be a question with a best answer, an implemented idea, or just a post needing no comment.<br />
If you have a follow-up or related question, please <a href="https://community.safe.com/topic/new">post a new question or idea</a>.<br />
If there is a genuine update to be made, please contact us and request that the post is reopened.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.