! Copyright (C) 2010 John Benediktsson ! See http://factorcode.org/license.txt for BSD license USING: accessors alien.c-types alien.data alien.strings alien.syntax classes.struct destructors io.files.trash io.pathnames kernel libc literals math sequences system windows.types ; IN: io.files.trash.windows M: windows send-to-trash ( path -- ) [ absolute-path native-string>alien B{ 0 0 } append malloc-byte-array &free SHFILEOPSTRUCTW f >>hwnd FO_DELETE >>wFunc swap >>pFrom f >>pTo flags{ FOF_ALLOWUNDO FOF_NOCONFIRMATION FOF_NOERRORUI FOF_SILENT } >>fFlags SHFileOperationW [ throw ] unless-zero ] with-destructors ;