0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SocketDebuggerの受信データをファイル保存するスクリプト

Last updated at Posted at 2024-10-09

やりたいこと

SocketDebuggerがデータを受信すると、自動的にファイルに保存して欲しい。

※わざわざ記事にする程でもないですが、
 SocketDebuggerとLuaをはじめて使って動いたので、

スクリプト

  • データを受信するとOnReceive()関数が呼び出される
    • 引数recvは受信データ(テーブル)
  • FileWrite()関数はファイル書き込み
    • 引数recvはテーブル
    • filenameは、ファイルのフルパスを指定する
    • ファイルはバイナリ形式で保存される
    • 戻り値は、なし
---------------------------------------------
-- 受信通知
---------------------------------------------
function OnReceive(recv)
    date = os.date("%Y%m%d")
    time = os.date("%H%M%S")
    filename = "C:\\SocketDebugger\\受信データ\\Receive_" .. date .. "_" .. time .. ".dat"

    FileWrite(recv, filename)
    
    return 0
end

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?