Goにもクリップボード使えるライブラリありますが、ファイルリストの読み書きできるのなさそうなので作ってみました。Windows限定ですけど package main import ( "fmt" "syscall" "unsafe" "github.com/AllenDang/w32" ) // #include <string.h> import "C" type clipboardFormat uint const ( textFormat clipboardFormat = w32.CF_UNICODETEXT fileListFormat clipboardFormat = w32.CF_HDROP ) func isAvailable(format clipboardFormat) bool { return w32.IsClipboardFormatAvailable(uint