Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for How to get file path from clipboard in ElectronJS
Khoi Doan (Osbkca)
Khoi Doan (Osbkca)

Posted on

     

How to get file path from clipboard in ElectronJS

To get file path of a file which you have copied on the your computer through ElectronJS depends on the operating system run the Electron application on.
In this article, I work on two popular operating system MacOs and Windows

On MacOS:

constfilePath=clipboard.read('public.file-url').replace('file://','');
Enter fullscreen modeExit fullscreen mode

On Windows:

constrawFilePath=clipboard.read('FileNameW');constfilePath=rawFilePath.replace(newRegExp(String.fromCharCode(0),'g'),'');
Enter fullscreen modeExit fullscreen mode
import{clipboard}from"electron";exportconstgetFilePathFromClipboard=()=>{letfilePath="";if(process.platform==="darwin"){filePath=clipboard.read("public.file-url").replace("file://","");}if(process.platform==="win32"){filePath=clipboard.read("FileNameW").replace(newRegExp(String.fromCharCode(0),"g"),"");}returnfilePath;};
Enter fullscreen modeExit fullscreen mode

I used above code for my love appXclippy

xclippy #osbkca

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

print(">Hello world! _")
  • Location
    Ha Noi, Viet Nam
  • Joined

More fromKhoi Doan (Osbkca)

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp