Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am generating file names that contain a timestamp in the following format:

"base_name (yyyy-mm-dd hhmmss).ext"

This seems to cause a problem on Android. Here's my log:

/storage/sdcard0/anMoney/transfer/Net worth over time _ Forecast (2012-11-19 110550).pdf
E/Gmail   (11802): java.io.FileNotFoundException: /storage/sdcard0/myapp/transfer/Net   worth over time _ Forecast (2012-11-19 110550).pdf: open failed: ENOENT (No such file or directory)
E/Gmail   (11802):      at libcore.io.IoBridge.open(IoBridge.java:416)
E/Gmail   (11802):      at java.io.FileInputStream.<init>(FileInputStream.java:78)
E/Gmail   (11802):      at java.io.FileInputStream.<init>(FileInputStream.java:105)
E/Gmail   (11802):      at android.content.ContentResolver.openInputStream(ContentResolver.java:445)
E/Gmail   (11802):      at com.google.android.gm.provider.MailEngine.cacheAttachment(MailEngine.java:3054)
E/Gmail   (11802):      at com.google.android.gm.provider.MailEngine.sendOrSaveDraft(MailEngine.java:2746)
E/Gmail   (11802):      at com.google.android.gm.provider.MailProvider.sendOrSaveDraft(MailProvider.java:477)
E/Gmail   (11802):      at com.google.android.gm.provider.MailProvider.insert(MailProvider.java:534)
E/Gmail   (11802):      at android.content.ContentProvider$Transport.insert(ContentProvider.java:201)
E/Gmail   (11802):      at android.content.ContentResolver.insert(ContentResolver.java:864)
E/Gmail   (11802):      at com.google.android.gm.provider.Gmail$MessageModification.sendOrSaveNewMessage(Gmail.java:3576)
E/Gmail   (11802):      at com.google.android.gm.ComposeActivity$SendOrSaveTask$1.onInitializationComplete(ComposeActivity.java:1765)
E/Gmail   (11802):      at com.google.android.gm.provider.MailEngine$5.run(MailEngine.java:1006)
E/Gmail   (11802):      at android.os.Handler.handleCallback(Handler.java:615)
E/Gmail   (11802):      at android.os.Handler.dispatchMessage(Handler.java:92)
E/Gmail   (11802):      at android.os.Looper.loop(Looper.java:137)
E/Gmail   (11802):      at android.os.HandlerThread.run(HandlerThread.java:60)
E/Gmail   (11802): Caused by: libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)

Now, if I trim the file name to have only 16 characters within the parentheses, everything is working as expected. I am able to send the file as a GMail attachment.

The following file name is working fine:

/storage/sdcard0/myapp/transfer/Net worth over time _ Forecast (2012-11-19 11070).pdf

I tried the following troubleshooting:

  • It's not the overall length of the file name, as if I shorten the base name, the same behavior remains
  • It's not GMail, uploading the file to Google Drive fails similarly
  • 16 characters inside the parentheses work, but not 17
  • It's not the space character inside the parentheses that causes the issue, as I replaced it with a dash and it's the same problem.

Anybody has any ideas on what's going on here?

share|improve this question
can you post the code where u're accessing the file? – PC. Nov 19 '12 at 3:27
When you talk about sending the file as an attachment in Gmail or uploading it with Google Drive, do you mean programmatically, through their apps, or through the browser? – Cornstalks Nov 19 '12 at 3:29
I see extra spaces: Net worth and Net____worth (first 2 lines of your log cat), there is no such file with extra spaces in its name on sd-card. Check your code where you form file names. – user117 Nov 19 '12 at 4:55

closed as too localized by Jonathan Leffler, Tim Post Nov 19 '12 at 8:05

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Ideally you wouldn't have spaces in the file name, but if you can't remove them you need to escape them.

Try replacing the " " with "\ ".

e.g. /storage/sdcard0/myapp/transfer/Net\ \ \ worth\ over\ time\ _\ Forecast\ (2012-11-19 110550).pdf

share|improve this answer
It wasn't that. Spaces are fine in file names. But thanks for the tip. – Tom anMoney Nov 19 '12 at 5:38

This was my bug. Calling the file name generator twice and this receiving a different file name as the seconds field has changed.

Can somebody close this question? Or show me how to. Thanks.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.