HTML5のFileSystemAPIを使ってファイル上書き保存をしたいのですがイマイチ方法が分かりません。
javascript
1//ファイルインポート 2const loadFile = document.getElementById("loadFile"); 3loadFile.onclick = (cache): void => { 4 console.log(cache); 5} 6loadFile.onchange = (e): void => { 7 const file_data = e.target.files; 8 const foo: string = file_data[0].name.split("."); 9 const extension: string = foo[foo.length - 1]; 10 const file_info = document.getElementById("file_info"); 11 if (extension == "md") { 12 left_input.innerText = ""; 13 left_input.value = null; 14 file_info.innerText = file_data[0].name; 15 popupImage(); 16 let reader = new FileReader(); 17 reader.onload = function (evt) { 18 let txt: string = evt.target.result as string; 19 txt = txt.replace(/(\n|\r)/g, '$%$%{Insert for new line}$%$%'); 20 const newLineStr = txt.split("$%$%{Insert for new line}$%$%"); 21 newLineStr.map(function (text) { 22 left_input.insertAdjacentText("beforeend", text + "\n"); 23 marking(left_input.textContent); 24 }) 25 left_input.value = left_input.textContent; 26 wordCounting();//文字数をカウントして表示する 27 saveEditContent();//LocalStorageに初期保存 28 const today = new Date(); 29 const storage: { 30 date: Date 31 body: String 32 } = { 33 date: moment(today).format("MM/DD HH:mm"), 34 body: left_input.textContent 35 } 36 localStorage.setItem(file_data[0].name + "&&&forLocalStoragebyMultiMD&&&", JSON.stringify(storage)); 37 if (historyButton.length >= 5) { 38 const remove_key = `${historyButton[4].getAttribute("id")}&&&forLocalStoragebyMultiMD&&&` 39 localStorage.removeItem(remove_key); 40 document.getElementById(`${historyButton[4].getAttribute("id")}%&%content%&%`).remove(); 41 }; 42 if (!document.getElementById(file_data[0].name)) { 43 history_content.insertAdjacentHTML("afterbegin", `<div id="${file_data[0].name}%&%content%&%"><button id=${file_data[0].name} class="history-button">${file_data[0].name}</button></div>`); 44 document.getElementById(file_data[0].name).insertAdjacentHTML("afterend", `<p1 id="${file_data[0].name}%&%p1%&%">${moment(today).format("MM/DD HH:mm")}</p1>`); 45 } 46 buttonCheck(); 47 } 48 reader.readAsText(file_data[0]); 49 } else { 50 window.alert(`${file_data[0].name} is not a markdown file`); 51 } 52}
このコードでファイルをインポートしてテキストエリアに反映したのですが、その後編集したテキストエリアの内容を同じパスのファイルに上書き保存したいです。ただ、PC内の絶対パスは取得できないらしくその他の方法を探しています。FileSystemAPI以外の方法でも構いません。よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー