Javascript writing to file system,how is this kinda stuff approached?

Posted by user198729 on Stack Overflow See other posts from Stack Overflow or by user198729
Published on 2010-03-15T08:20:08Z Indexed on 2010/03/15 8:39 UTC
Read the original article Hit count: 193

Filed under:
|

http://www.tiddlywiki.com/

The above site provide a wiki tool which essentially is just a .html file,but it can save files via javascript,anyone knows how is it implemented?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about file-operations

  • File Operations in Java

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I'm working on a small application in Java that takes a directory structure and renames the files according to a certain format, after parsing the original name. What is the best Java class / methodology to use in order to facilitate these file operations? Edit: the question is only regarding the… >>> More

  • file operations

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I am writing a script for renaming/copying the content of a file. I have temp & temp1 folders. Inside temp1 I have 1000 .txt files with names 1.txt, 2.txt, 3.txt ... & in temp folder I have sub directories named 1, 2, 3. In the folders 1, 2, 3 ..., I have one file with extension java or… >>> More

  • ASP.net file operations delay

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Ok, so here's the problem: I'm reading the stream from a FileUpload control, reading in chunks of n bytes and writing the array in a loop until I reach the stream's end. Now the reason I do this is because I need to check several things while the upload is still going on (rather than doing a Save();… >>> More

  • segmentation fault in file operations in c

    as seen on Stack Overflow - Search for 'Stack Overflow'
    #include<stdio.h> /* this is a lexer which recognizes constants , variables ,symbols, identifiers , functions , comments and also header files . It stores the lexemes in 3 different files . One file contains all the headers and the comments . Another file will contain all the variables , another… >>> More

  • File Operations in Android NDK

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I am using the Android NDK to make an application primarily in C for performance reasons, but it appears that file operations such as fopen do not work correctly in Android. Whenever I try to use these functions, the application crashes. How do I create/write to a file with the Android NDK? >>> More