FileSaver.js icon indicating copy to clipboard operation
FileSaver.js copied to clipboard

Any possibility to save files with leading dot (.)?

Open florian-berger opened this issue 1 year ago • 0 comments

I am using the file-saver in an Angular application. I imported and used the file-saver by the following line:

import { saveAs } from 'file-saver'

export class MyClass {
  public someFunction() {
    // defining and filling myFileContent with a Uint8Array 
    const blob = new Blob([myFileContent], { type: 'application/octet-stream' })
    saveAs(blob, '.gitignore', { type: 'application/octet-stream' })
  }
}

But the file is downloaded as gitignore - the leading dot is missing. Happens on MacOS as well as on Windows systems.

I tried duplicating the dot as well as using standard escape characters, but nothing led to a solution. Is it even possible?

florian-berger avatar Mar 06 '24 13:03 florian-berger