answersLogoWhite

0


Best Answer

Ed2k file is used with eMule and MLDonkey programs that are used to download files over peer to peer connection. The ed2k file link includes ed2k part of the URI, followed by the filetoken (file, then:filename.extension, then: hash number).

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does an ed2k file link include?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can i add the Dhcpsapi library in code blocks IDE?

Link your project to the dhcpsapi.lib library file and include the dhcpsapi.h header file in all translation units that make use of the library.


Where you can include a header file in the program?

You can include a file with the #include directive at any place you want to. You just have to consider that the compiler will see the total source file as if you had copied the contents of each include file at the point where you included it, and it will parse and process the total source file accordingly. That said, header files, a subset of included files, are generally #include'd at the top of the source file. Again, it all depends on what is in the include file.


How do you include a system header file called sysheader.h in a c source file?

There is no system header called share.h, but if there were, it would be: #include <share.h>


What is the difference between symbolic link and hard link?

A hard link is an actual physical entity representing the link. i.e.--data file on a server.A symbolic link is a pointer to a physical entity. The purpose of a symbolic link is, if the object moves, the symbolic link is coded so no matter where the object physically resides, the database can find it. It requires less administration not having to update locations in files pointing to files that have moved. Symbolic links function similar to the short-cuts in a DOS based operating systemAnswerIn Unix and Unix-like systems, a hard link is a directory entry (filename) that points to the file itself. The operating system keeps track of how many hard links point to a file, so when the last hard link to a file is removed, the file is deleted. A symbolic link is a special file that only contains a filename. The file that a symbolic link refers to may not necessarily exist at any given time.


Does the external JavaScript file have to contain the script tag?

No, just the HTML file. If you include the tag, it will cause a syntax error. The best way to think of it is that the HTML file already has the tag in it, and the external JS file is inserted into the HTML file at that point, between the tags.

Related questions

What is server.met and what does it do?

"A server.met file is a file containing a list of eD2K servers. These servers are eDonkey servers used by eMule, which is an open source Windows client for KAD networks."


When referencing a file located in a different folder than the link tag you must include what from the file?

path


Can you create links to other files inside of an Excel spreadsheet?

Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.Yes you can. You can link to any kind of file or to websites.


How can i add the Dhcpsapi library in code blocks IDE?

Link your project to the dhcpsapi.lib library file and include the dhcpsapi.h header file in all translation units that make use of the library.


What can include such information as the file's author title or subject in Access?

You can include such information in Access by utilizing the properties of the database file. You can go to File > Info and enter details such as author, title, and subject. Additionally, you can also create a table to store this information and link it to your database objects.


What is it called when a link does not include the drive and folder location of the destination file as part of the URL address?

A relative link only contains part of the path, but never the drive, which is assumed to be C.


Can you open Excel with Microsoft PowerPoint?

You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.You can put a link into a Powerpoint document that will open an Excel file in Excel.


What is different between hard link and soft link?

A soft link is a special file on the filesystem that points to another file or folder and for the most part acts as if it *is* the file in question. Deleting the file pointed to will result in the link being broken.A hard link is less like that and more like another inode for that file data. In essense, a hard link is as much the original file as the original file. Delete the original file and the file will still exist due to the hard link. It's not the same as a COPY in that it's the same data, not duplicate data being referred to by multiple inodes. These do not work across filesystems for obvious reasons.


What does attachments mean in an email?

Include a file as part of the email.


Where you can include a header file in the program?

You can include a file with the #include directive at any place you want to. You just have to consider that the compiler will see the total source file as if you had copied the contents of each include file at the point where you included it, and it will parse and process the total source file accordingly. That said, header files, a subset of included files, are generally #include'd at the top of the source file. Again, it all depends on what is in the include file.


How do you include a file in PHP?

To include a file in PHP all you need to do is use the include() function as I have shown you in the example below. <?php include("filename.php"); ?>


How do you link to another excel file in a formula?

Include the external workbook (surrounded by []) and worksheet names (followed by !) in the formula:=SUM([workbook.xls]worsheet!A1:A23)