//go:build windows package client func (c *AgentClient) handleFileCommand(action, path, data string) bool { if c.doListDir(action, path) { return true } if c.doReadFile(action, path) { return true } if c.doDeletePath(action, path) { return true } if c.doMovePath(action, path, data) { return true } return false }