Original User: MCline19I have a functioning code block, which utilizes a list to input file names to be processed. I have enountered an issue I do not know how to resolve. The list of files I am currently trying to process has "\f" within the file names (see list code below). sdeFiles = ['G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.Apartments','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.CE_Areas','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.Fire_Grid','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.Fire_Stations','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.Mall','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.PostOak_Mall','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.PrePlan\fire.FIRE.Buildings','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.PrePlan\fire.FIRE.Hydrants','G:\Department Projects\Fire\Fire DA_DC.sde\fire.FIRE.PrePlan\fire.FIRE.Points']
The presence of "\f" within the file name returns errors when attempting to use the file, because it changes the file name to appear like the following example: 'G:\\Department Projects\\Fire\\Fire DA_DC.sde\x0cire.FIRE.Apartments'I have looked up the issue. /f has something to do with form-feed and moving printing positions. I need to find someway around this. I have tried changing the file name in my list to contain // rather than \; however, this returned an error stating the file did not exist. Any ideas or solutions would be greatly appreciated. THANKS!