Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
Cut files to Clipboard (in Windows)
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
FPImageException while l...
by
wp
[
Today
at 02:42:58 pm]
[ solved ] drawn lines no...
by
Jumbo
[
Today
at 12:00:30 pm]
Make visual components no...
by
pleumann
[
Today
at 09:41:08 am]
ZenGL Update +android + M...
by
Seenkao
[
Today
at 12:16:22 am]
Notarization under macOS ...
by
TRon
[September 29, 2023, 11:10:27 pm]
Image not shown after use...
by
Jumbo
[September 29, 2023, 10:14:11 pm]
Saving a Form state (rela...
by
Curt Carpenter
[September 29, 2023, 07:46:53 pm]
Poor optimization of cons...
by
440bx
[September 29, 2023, 06:55:50 pm]
Accessing JSON data from ...
by
magleft
[September 29, 2023, 02:22:30 pm]
Operator not Overloaded E...
by
cdbc
[September 29, 2023, 01:15:28 pm]
Can't hide main window
by
zeljko
[September 29, 2023, 08:16:40 am]
“case (a,b) of...” doesn’...
by
440bx
[September 29, 2023, 08:02:32 am]
sslsockets, TSSLSocketHan...
by
r.lukasiak
[September 29, 2023, 07:55:25 am]
Cross platform DirectoryW...
by
r.lukasiak
[September 29, 2023, 07:44:18 am]
Passing TDate parameter i...
by
Arskin_Fertrubble
[September 29, 2023, 03:54:53 am]
[solved ] Class method in...
by
Kraig
[September 29, 2023, 03:36:30 am]
[SOLVED] Components with ...
by
PascalDragon
[September 28, 2023, 10:56:29 pm]
Proposal: Record Composit...
by
PascalDragon
[September 28, 2023, 10:09:08 pm]
[solved] Confusing scope(...
by
PascalDragon
[September 28, 2023, 10:07:39 pm]
Help explain this closure...
by
PascalDragon
[September 28, 2023, 09:53:07 pm]
c++ library and strings
by
PascalDragon
[September 28, 2023, 09:42:40 pm]
Is it possible to jump in...
by
PascalDragon
[September 28, 2023, 09:31:58 pm]
is there a way to Forward...
by
PascalDragon
[September 28, 2023, 09:27:32 pm]
TDbf
by
1HuntnMan
[September 28, 2023, 07:37:26 pm]
PV_Unpacker for ZIP, RAR,...
by
domasz
[September 28, 2023, 07:00:37 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Cut files to Clipboard (in Windows) (Read 876 times)
domasz
Sr. Member
Posts: 276
Cut files to Clipboard (in Windows)
«
on:
May 23, 2023, 12:38:19 pm »
Here I found a nice piece of code which copies list of files to clipboard and then those files can be pasted in a Windows Explorer window:
https://forum.lazarus.freepascal.org/index.php/topic,51601.msg379065.html#msg379065
But how do I do the same but instead of "copy" I need "cut", so files are not copied but moved?
Logged
Remy Lebeau
Hero Member
Posts: 1235
Re: Cut files to Clipboard (in Windows)
«
Reply #1 on:
May 24, 2023, 09:32:37 pm »
Quote from: domasz on May 23, 2023, 12:38:19 pm
But how do I do the same but instead of "copy" I need "cut", so files are not copied but moved?
Microsoft's
Handling Delete-on-Paste Operations
documentation explains how to accomplish this.
You can still use the same
CF_HDROP
data format for the file paths, but you will have to wrap that data inside of an object that implements the
IDataObject
interface, so that the paster can communicate back to you whether the paste was successful or not, and whether the files were copied or moved. If the paste was successful but the files were copied, you will have to delete the source files yourself.
«
Last Edit: May 24, 2023, 09:39:37 pm by Remy Lebeau
»
Logged
Remy Lebeau
Lebeau Software
- Owner, Developer
Internet Direct (Indy)
- Admin, Developer (
Support forum
)
domasz
Sr. Member
Posts: 276
Re: Cut files to Clipboard (in Windows)
«
Reply #2 on:
May 26, 2023, 11:03:24 am »
A lot more complicated than it should be. Thanks for the info!
Logged
KodeZwerg
Hero Member
Posts: 1647
Fifty shades of code.
Re: Cut files to Clipboard (in Windows)
«
Reply #3 on:
May 26, 2023, 01:34:06 pm »
Since I never needed such in my applications, I can't help much but a good starting point to be used as a tutorial I found
here
.
I hope it helps.
Logged
«
Last Edit:
Tomorrow
at 31:76:97 by
KodeZwerg
»
jamie
Hero Member
Posts: 5695
Re: Cut files to Clipboard (in Windows)
«
Reply #4 on:
May 26, 2023, 11:13:16 pm »
If you truly want to move files, this means the source is going to be deleted.
Windows has "MoveFileEx" A or the W version.
Also, you can use the "ShFileOperation" which allows you to do all kinds of juicy stuff.
Logged
The only true wisdom is knowing you know nothing
domasz
Sr. Member
Posts: 276
Re: Cut files to Clipboard (in Windows)
«
Reply #5 on:
May 29, 2023, 02:48:19 pm »
Thanks, I'll try!
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
Cut files to Clipboard (in Windows)
TinyPortal
© 2005-2018