How to get a file in Windows with a colon in the filename?

WindowsUnixFilenamesColon

Windows Problem Overview


I am getting errors from customers who are uploading files with a colon in the file name, i.e. C:/uploads/test : doc.html

I assume that some Unix or Linux system is generating the file but I'm not sure how the users are saving them with the invalid filename. I have coded a piece that should rename the document on upload. My problem is that I can't test it because I can't get a file on Windows that has a colon in the filename.

Windows Solutions


Solution 1 - Windows

I found a very similar character to a colon, "꞉" it is a unicode character called a Modifier Letter Colon. This has no space like the fullwidth colon and is pretty much exactly the same as a regular colon but the symbol works. You can either copy and paste it from above or you can use the code point, U+A789

Solution 2 - Windows

A colon is an invalid character for a Windows file name. You won't be able to allow ':' in the file name, but you can work around it.

You can either do what it sounds like you have already done; create a script that replaces these invalid characters with valid ones on the UNIX side. Or, you can take care of this on the Windows server with File Name Character Translation: http://support.microsoft.com/kb/289627

Solution 3 - Windows

Other replacements I've found for reserved characters are

” ‹ › ⁎ ∕ ⑊ \︖ ꞉ ⏐

For example in python you would do:

fixed_name = orig_name.replace('\\\\','⑊')
forbidden_characters = '"*/:<>?\|'
unicode_characters = '”⁎∕꞉‹›︖\⏐'
for a, b in zip(forbidden_characters, unicode_characters):
    fixed_name = fixed_name.replace(a, b)

Solution 4 - Windows

It's probable from the filename you provided that the character you have in your filenames is not a literal colon :, which is a reserved character in Windows filenames, but a fullwidth colon Instead. It's a Unicode character that looks very much like a colon, visually surrounded by spaces that you can't remove. You can handle it the very same way as any Unicode chacter, the code point is U+FF1A.

Solution 5 - Windows

You can use the CJK(Chinese/Japan/Korean) one

":"

which is pretty generic.

Solution 6 - Windows

Currently, you would use WSL, url for instructions: https://docs.microsoft.com/en-us/windows/wsl/install-win10.

You could then create a colon in your Linux Distro.

Solution 7 - Windows

HOW TO NAME A FILE OR FOLDER USING A SYMBOL THAT LOOKS LIKE A COLON

In the example below, the font size is 12, with the exception of the symbol, which is set to Subscript, Bold and a font size of 16. The character code for the colon-like symbol is 02F8.

The reason for the Subscript setting is to position the symbol lower relative to its vertical position. The bold and larger font settings are applied so that the symbol is more discernible on the page, and have no affect when used in a file or folder name.

Example: (C˸) Symbol – Subscript, Calibri, Bold and font size of 16.

*Using Windows 7, and Word 2007

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDavidView Question on Stackoverflow
Solution 1 - WindowsJackView Answer on Stackoverflow
Solution 2 - WindowsMikeView Answer on Stackoverflow
Solution 3 - WindowsaljgomView Answer on Stackoverflow
Solution 4 - WindowsadraedinView Answer on Stackoverflow
Solution 5 - WindowsimocView Answer on Stackoverflow
Solution 6 - WindowsKetZoomerView Answer on Stackoverflow
Solution 7 - WindowsJeffView Answer on Stackoverflow