|
メールを1通選択してる状態に限って、そのメールの添付ファイルを削除してゴミ
箱フォルダへ移動するサンプルマクロを作ってみました。
移動する用のMove関数呼び出しのパラメータをいじれば好きな所に移動できると思
います。
----------------------------------------------------------------------------
-------
loaddll "tkinfo.dll";
question "添付ファイルを削除してからゴミ箱に移動してもいいですか?";
if( result != yes ) {
endmacro;
}
if( dllfunc("SelectedMailCount") != 1 ) {
message "このマクロはメールを1通選択してる時だけしか実行できません。";
endmacro;
}
#i = 0;
while(1) {
$attach = dllfuncstr("CurrentHeader2", "X-Attach", #i);
if( $attach == "" ) {
break;
}
$path = dllfuncstr("HomeDir") + dllfuncstr("CurrentAccount") + "\\"
+ $attach;
#n = dllfunc("Bypass_SetFileAttributes", $path, 0 );
#n = dllfunc("Bypass_DeleteFile", $path );
#i = #i + 1;
}
#n = dllfunc("Move", "", "ゴミ箱");
----------------------------------------------------------------------------
-------
|
|