如何在c/C++中以編程方式創建軟鏈接? freebsd中的link()系統調用將創建一個硬鏈接。如何在c/C++中以編程方式創建軟鏈接?
7
A
回答
9
系統調用你想要的是symlink(2)。
#include <unistd.h>
int symlink(const char *name1, const char *name2);
符號鏈接
name2
創建於name1
+0
謝謝,這有助於:) – 2014-09-30 10:11:40
4
您可以撥打symlink()
int symlink(const char *name1, const char *name2);
A symbolic link name2 is created to name1 (name2 is the name of the file
created, name1 is the string used in creating the symbolic link). Either
name may be an arbitrary path name; the files need not be on the same
file system.
+0
謝謝,這有助於。系統編程新手。 – 2014-09-30 10:13:17
相關問題
- 1. 如何以編程方式創建命令鏈接
- 2. 以編程方式在EmberJS視圖中創建鏈接
- 3. 以編程方式在PDF文件中創建鏈接
- 4. 以編程方式在Silverlight DataGrid中創建超鏈接列
- 5. 如何以編程方式在Drupal 7中創建多語言菜單鏈接
- 6. 如何以編程方式創建UIButton
- 7. 如何以編程方式創建GPO?
- 8. 如何以編程方式創建JPEG
- 9. 如何以編程方式創建DrawerLayout
- 10. 如何以編程方式創建NSPopover
- 11. 如何以編程方式創建SplitView?
- 12. 如何以編程方式創建Tabbar
- 13. 如何以編程方式創建UIViewController?
- 14. 如何以編程方式創建UISplitViewController?
- 15. 如何以編程方式創建CustomCell?
- 16. 如何以編程方式創建UIScrollView?
- 17. 如何以編程方式創建dojox.mobile.TabBar?
- 18. 如何以編程方式創建ProgressBar?
- 19. 如何以編程方式創建UIScrollview
- 20. 如何以編程方式創建UICollectionViewCell
- 21. 如何以編程方式創建NSFetchedPropertyDescription?
- 22. 如何以編程方式創建DSN?
- 23. 如何以編程方式創建BasicHttpBinding?
- 24. 如何以編程方式創建NSTextField?
- 25. 如何以編程方式創建dojo.mobile.view?
- 26. 如何以編程方式創建NSSearchField?
- 27. 如何以編程方式創建TextView?
- 28. 以編程方式在MS Access中創建ODBC連接和鏈接表
- 29. 如何以有效的方式在jQuery中創建鏈接?
- 30. 創建軟鏈接
''中定義unistd.h'功能symlink'。 – isedev 2014-09-30 09:59:29